home *** CD-ROM | disk | FTP | other *** search
/ Super Shareware Collection / Super Shareware Collection.iso / os_2 / memsz220.zip / CONFIG.H < prev    next >
C/C++ Source or Header  |  1994-02-07  |  630b  |  34 lines

  1. /******************************************************************* CONFIG.H
  2.  *                                        *
  3.  *               Configure Dialog definitions                *
  4.  *                                        *
  5.  ****************************************************************************/
  6.  
  7. #ifndef CONFIG_H
  8. #define CONFIG_H
  9.  
  10. typedef struct
  11. {
  12.   SHORT  id ;
  13.   HWND     hwndHelp ;
  14.  
  15.   BOOL     HideControls ;
  16.   BOOL     Float ;
  17.   ULONG  TimerInterval ;
  18.  
  19.   USHORT ItemCount ;
  20.   PSZ    *ItemNames ;
  21.   PBOOL  ItemFlags ;
  22. }
  23. CONFIG_PARMS, *PCONFIG_PARMS ;
  24.  
  25. extern MRESULT EXPENTRY ConfigureProcessor
  26. (
  27.   HWND hwnd,
  28.   USHORT msg,
  29.   MPARAM mp1,
  30.   MPARAM mp2
  31. ) ;
  32.  
  33. #endif
  34.